@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* font-family: 'Roboto Condensed', sans-serif; */
/* font-family: 'Poppins', sans-serif; */
* {
	padding: 0;
	box-sizing: border-box;
}

:root {
	--black: #333333;
	--dark-blue: #0756a5;
	--light-blue: rgba(7, 86, 165, 0.06);
	--white: #fff;
	--orange: #ff5500;
	--poppins: "Poppins", sans-serif;
	--roboto-condensed: "Roboto Condensed", sans-serif;
}

html {
	scroll-behavior: smooth !important;
}

/* <!-- ========== GIVECENTRAL TRAINING PAGE CSS STARTED========== --> */

/* <!-- ========== GIVECENTRAL TRAINING BANNER SECTION CSS ========== --> */
.gt-hero-section {
	padding-top: 127px;
}
.gt-hero-section .gt-hero-inner-section {
	padding: 52px 0;
	background: url(../images/gt-hero-bg-desktop-new.png);
	background-position: center top;
	background-size: cover;
}
.gt-hero-section .content {
	text-align: center;
}

.gt-hero-section .content img {
	margin-bottom: 14px;
}

.gt-hero-section .content p {
	font-size: 20px;
	line-height: 34px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
	text-align: center;
	max-width: 998px;
	margin: 0 auto;
	width: 100%;
}

/* <!-- ========== GIVECENTRAL TRAINING TEXT SECTION CSS ========== --> */

.gt-text-section {
	padding: 40px 0;
	background: linear-gradient(90deg, #0756a5 0%, #00468c 100%);
}

.gt-text-section .content p {
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: var(--white);
	font-family: var(--poppins);
}

/* <!-- ========== GIVECENTRAL TRAINING INFO SECTION CSS ========== --> */

.gt-info-section {
	padding: 80px 0 115px 0;
}

.gt-info-section .content p {
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
}

/* <!-- ========== GIVECENTRAL TRAINING PROGRAM SECTION CSS ========== --> */

.gt-program-section {
	padding: 0 0 85px 0;
}

.gt-program-section .gt-program-heading {
	font-size: 32px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 60px;
	color: var(--dark-blue);
	font-family: var(--roboto-condensed);
	position: relative;
	text-align: center;
}

.gt-program-section .gt-program-heading::after {
	content: "";
	display: block;
	width: 180px;
	height: 3px;
	background-color: #0756a5;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 40px;
	bottom: -15px;
}

.gt-session-tab-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.gt-session-tab-button {
	flex-basis: 25%;
	cursor: pointer;
	border: 0.5px solid #0756a5;
	outline: none;
	font-size: 20px;
	font-weight: 600;
	font-family: var(--roboto-condensed);
	color: var(--black);
	padding: 30px 5px;
	width: 100%;
	text-align: center;
	background-color: #f7f8fb;
	transition: background-color 0.3s ease;
	border-right: 0;
}

.gt-session-tab-button:last-child {
	border-right: 0.5px solid #0756a5;
}

.gt-session-tab-button:hover {
	background-color: var(--dark-blue);
	color: var(--white);
}

.gt-session-tab-button.active {
	background-color: var(--dark-blue);
	color: var(--white);
}

.gt-session-tab-content {
	padding-top: 60px;
	background-color: #fff;
}

.gt-session-tab-pane {
	display: none;
}

.gt-session-tab-pane.active {
	display: block;
}

.gt-session-content-wrapper {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 45px;
}

.gt-session-content-wrapper .left-content {
	width: 100%;
}

.gt-session-content-wrapper .left-content p {
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: var(--black);
	font-family: var(--poppins);
}

.gt-session-content-wrapper .right-content {
	width: 100%;
}

.gt-session-content-wrapper .right-content-heading {
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 45px;
	color: var(--dark-blue);
	font-family: var(--roboto-condensed);
	position: relative;
	text-align: left;
}

.gt-session-content-wrapper .right-content-heading::after {
	content: "";
	display: block;
	width: 180px;
	height: 3px;
	background-color: #0756a5;
	margin: 0 auto;
	position: absolute;
	left: 0;
	border-radius: 40px;
	bottom: -15px;
}

.gt-session-card-wrapper {
	border: 1px solid var(--white);
	background: #f7f8fb;
	padding: 10px 5px;
	margin-bottom: 15px;
}

.gt-session-card {
	border: 5px solid var(--white);
	padding: 13px 18px;
	display: flex;
	align-items: start;
	gap: 20px;
}

.gt-session-card-wrapper:hover .gt-session-card {
	border: 5px solid var(--dark-blue);
}

.gt-session-card-image {
	max-width: 148px;
	width: 100%;
}

.gt-session-card-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	border-radius: 6px;
}

.gt-session-card-content h2 {
	font-size: 20px;
	font-weight: 500;
	color: var(--black);
	font-family: var(--roboto-condensed);
	margin-bottom: 18px;
	line-height: 26px;
}

.gt-session-card-content .date-time-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 20px;
}

.gt-session-card-content .date-time-wrapper div {
	display: flex;
	align-items: center;
	gap: 7px;
}

.gt-session-card-content .date-time-wrapper div img {
	height: 22px;
	width: 22px;
}

.gt-session-card-content .date-time-wrapper div p {
	font-size: 14px;
	font-weight: 500;
	color: var(--black);
	font-family: var(--poppins);
	line-height: 20px;
	margin-bottom: 0;
}

.gt-session-card-content .register-btn {
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	font-family: var(--poppins);
	text-decoration: none;
	padding: 12px 22px;
	border: 1px solid var(--dark-blue);
	border-radius: 90px;
	display: inline-block;
	background-color: var(--dark-blue);
	transition: all 0.3s ease-in-out;
}

.gt-session-card-content .register-btn:hover {
	transform: translateY(-8px);
	transition: all 0.3s ease-in-out;
}

/* <!-- ========== GIVECENTRAL TRAINING KNOWLEDGE SECTION CSS ========== --> */

.gt-knowledge-section {
	margin-bottom: 85px;
}

.gt-knowledge-section .row {
	background: url(../images/gt-knowledge-bg.webp);
	background-position: center left;
	background-size: cover;
	margin: 0;
	padding: 38px 32px 0 32px;
}

.gt-knowledge-section .content h3 {
	font-family: var(--roboto-condensed);
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
	color: var(--white);
	margin-bottom: 40px;
	margin-top: 15px;
}

.gt-knowledge-section .content p {
	font-family: var(--poppins);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: var(--white);
	margin-bottom: 0;
}

.gt-knowledge-section .content p a {
	color: #fff;
	text-decoration: underline;
}

.gt-knowledge-section .col-md-4 {
	padding: 0;
}

.gt-knowledge-section .image-wrapper {
	text-align: center;
}

.gt-knowledge-section .image-wrapper img {
	max-width: 100%;
	height: auto;
}

/***************************************************************/
/* <!-- ========== RESPONSIVE MEDIA QUERIES CSS ========== --> */
/***************************************************************/

/* <!-- === RESPONSIVE 1198px STARTS HERE === --> */

@media (max-width: 1198px) {
	.gt-hero-section .content h1 {
		font-size: 44px;
	}

	.gt-info-section {
		padding: 80px 0 80px 0;
	}

	.gt-info-section .image-wrapper img {
		width: 100%;
		height: 100%;
	}

	.gt-knowledge-section .content h3 {
		font-size: 36px;
		line-height: 46px;
	}
}

/* <!-- === RESPONSIVE 992PX STARTS HERE === --> */

@media (max-width: 992px) {
	.gt-hero-section {
		padding-top: 107px;
	}

	.gt-hero-section .content p {
		font-size: 16px;
		line-height: 28px;
	}

	.gt-text-section .content p {
		font-size: 14px;
		line-height: 28px;
	}

	.gt-info-section {
		padding: 60px 0 60px 0;
	}

	.gt-info-section .row {
		align-items: start !important;
	}

	.gt-info-section .content p {
		font-size: 14px;
		line-height: 26px;
	}

	.gt-program-section {
		padding: 0 0 70px 0;
	}

	.gt-program-section .gt-program-heading {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 50px;
	}

	.gt-session-tab-button {
		font-size: 18px;
		padding: 20px 5px;
	}

	.gt-session-tab-content {
		padding-top: 40px;
		background-color: #fff;
	}

	.gt-session-content-wrapper {
		gap: 35px;
	}

	.gt-knowledge-section .row {
		padding: 30px 20px 0 5px;
	}
	.gt-knowledge-section .content h3 {
		font-size: 26px;
		line-height: 34px;
		margin-bottom: 15px;
		margin-top: 5px;
	}

	.gt-knowledge-section .content p {
		font-size: 14px;
		line-height: 21px;
	}
}

/* <!-- === RESPONSIVE ONLY 768px STARTS HERE === --> */

@media (max-width: 768px) {
	.gt-hero-section {
		padding-top: 0px;
	}
}

/* <!-- === RESPONSIVE ONLY 767px STARTS HERE === --> */

@media (max-width: 767px) {
	.gt-hero-section .gt-hero-inner-section {
		padding: 35px 0;
	}

	.gt-hero-section .content img {
		width: 100%;
		height: auto;
	}

	.gt-info-section {
		padding: 50px 0 50px 0;
	}

	.gt-info-section .image-wrapper {
		text-align: center;
		margin-bottom: 30px;
	}

	.gt-info-section .image-wrapper img {
		width: 80%;
		height: auto;
	}

	.gt-session-tab-content {
		padding-top: 30px;
	}

	.gt-session-tab-button {
		font-size: 14px;
		padding: 15px 5px;
	}

	.gt-program-section {
		padding: 0 0 50px 0;
	}

	.gt-session-content-wrapper .right-content-heading {
		font-size: 22px;
		line-height: 26px;
		margin-bottom: 35px;
	}

	.gt-session-content-wrapper .left-content p {
		font-size: 14px;
		line-height: 26px;
	}

	.gt-session-card-wrapper {
		padding: 5px 3px;
	}

	.gt-session-card {
		padding: 8px 8px;
		gap: 8px;
	}

	.gt-session-card-content h2 {
		font-size: 16px;
		line-height: 20px;
	}

	.gt-session-card-content .date-time-wrapper {
		gap: 10px;
		margin-bottom: 18px;
	}

	.gt-session-card-content .date-time-wrapper div img {
		height: 18px;
		width: 18px;
	}

	.gt-session-card-content .date-time-wrapper div p {
		font-size: 12px;
		line-height: 18px;
	}

	.gt-session-card-content .register-btn {
		padding: 7px 20px;
		font-size: 13px;
	}

	.gt-session-card-image {
		max-width: 130px;
		width: 100%;
	}

	.gt-knowledge-section .row {
		padding: 40px 20px 0 20px;
		flex-direction: column-reverse;
	}

	.gt-knowledge-section .content {
		padding: 30px 0;
		text-align: left;
	}
}

/* <!-- === RESPONSIVE ONLY 575px STARTS HERE === --> */

@media (max-width: 575px) {
	.gt-hero-section .content p {
		font-size: 14px;
		line-height: 24px;
	}

	.gt-hero-section .content img {
		margin-bottom: 8px;
	}

	.gt-info-section .image-wrapper img {
		width: 100%;
		height: auto;
	}

	.gt-program-section .gt-program-heading {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 45px;
	}

	.gt-session-tab-button {
		font-size: 14px;
		padding: 15px 5px;
		line-height: 18px;
		min-height: 68px;
	}

	.gt-session-card {
		padding: 10px 10px;
		gap: 15px;
		flex-direction: column;
	}

	.gt-session-card-image {
		max-width: 100%;
		width: 100%;
	}

	.gt-session-card-content h2 {
		font-size: 18px;
		margin-bottom: 15px;
		line-height: 24px;
	}

	.gt-session-card-content .date-time-wrapper {
		gap: 10px;
		margin-bottom: 20px;
	}

	.gt-session-card-content .date-time-wrapper div p {
		font-size: 14px;
		line-height: 22px;
	}

	.gt-knowledge-section .col-md-8 {
		padding: 0;
	}
}

/* <!-- === RESPONSIVE ONLY 426px STARTS HERE === --> */

@media (max-width: 426px) {
	.gt-session-tab-button {
		padding: 15px 15px;
	}
}